aboutsummaryrefslogtreecommitdiffstats
path: root/code/frontend/src/routes/(main)/(app)/projects/[id]
diff options
context:
space:
mode:
Diffstat (limited to 'code/frontend/src/routes/(main)/(app)/projects/[id]')
-rw-r--r--code/frontend/src/routes/(main)/(app)/projects/[id]/+page.svelte5
1 files changed, 5 insertions, 0 deletions
diff --git a/code/frontend/src/routes/(main)/(app)/projects/[id]/+page.svelte b/code/frontend/src/routes/(main)/(app)/projects/[id]/+page.svelte
new file mode 100644
index 0000000..ca474e2
--- /dev/null
+++ b/code/frontend/src/routes/(main)/(app)/projects/[id]/+page.svelte
@@ -0,0 +1,5 @@
+<script lang="ts">
+ import { page } from "$app/stores";
+</script>
+
+<h1>{$page.params.id}</h1>